home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / PSK.ZIP / CLASSCVT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-10  |  437 b   |  29 lines

  1. /*
  2.     classcvt.H
  3.  
  4.     Classifications and Conversions Header File
  5.  
  6.     Copyright (C) 1993, Geoff Friesen B.Sc.
  7.     All rights reserved.
  8.  
  9.     Borland C++ 3.1
  10. */
  11.  
  12. #ifdef __cplusplus
  13. extern "C"
  14. {
  15. #endif
  16.  
  17. int    isalnum        (int c);
  18. int    isalpha        (int c);
  19. int    isdigit        (int c);
  20. int    islower        (int c);
  21. int    isspace        (int c);
  22. int    isupper        (int c);
  23. int    isxdigit    (int c);
  24. int    lower        (int c);
  25. int    upper        (int c);
  26.  
  27. #ifdef __cplusplus
  28. }
  29. #endif